home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo AQUARIUM (c) 1991, 1992 Installation
- echo.
- echo.
- if "%1" == "" goto NoPath
- echo Ready to install on your '%1' hard disk.
- echo Note:INSTALL will create the directory \AQUARIUM on your hard disk.
- echo.
- echo Press Ctrl + C keys to abort.
- echo.
- pause
- echo.
- echo Attempting to create \AQUARIUM directory on your hard disk. If this
- echo directory already exists, DOS will issue an error message, but you
- echo can ignore the message.
- echo.
- md %1\AQUARIUM
- copy aqua.* %1\AQUARIUM
- echo.
- copy *.DOC %1\AQUARIUM
- copy view.com %1\AQUARIUM
- echo.
- echo Installation of the AQUARIUM files is complete!
- echo Remove your AQUARIUM floppy and store in a safe place.
- echo.
- echo To run AQUARIUM from your %1 hard disk:
- echo Logon to your %1 drive by typing %1
- echo Change directory to \AQUARIUM by typing CD \AQUARIUM
- echo Start the Aquarium program by typing AQUA
- echo.
- echo View the README.DOC file included on your AQUARIUM floppy by
- echo using the VIEW program included as follows:
- echo.
- echo Logon to the A: floppy drive first.
- echo.
- echo "A:" (press enter key)
- echo.
- echo Then type "VIEW README.DOC" (press enter key)
- echo.
- echo.
- echo The README.DOC is a text file and may also be read by any Word
- echo Processing program.
- echo.
- echo Regards Ron, Chris & Kim
- echo.
- goto end
- :NoPath
- echo.
- echo Insert the AQUARIUM diskette in drive A: and close the door.
- echo Next, log onto drive A: by typing 'A:' followed by ENTER key.
- echo Now start the Install procedure by typing INSTALL drive:
- echo.
- echo Syntax: INSTALL drive:
- echo.
- echo Where 'drive:' is the drive letter of the hard disk drive
- echo where you wish to install this program, such as C: or D:
- echo.
- echo Example: INSTALL C:
- echo.
- echo This would install the AQUARIUM files on your C: drive.
- echo.
- :end
-
-